/*===========================================================================
//* 2021-1-21
//* 整理者：qzh
//* 新增/替换需要备注的请标注谢谢（新增请放在指定范围）
//*===========================================================================*/
/*=======================================
全局布局
========================================*/
@media (min-width: 1680px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1680px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1366px) {
  html {
    font-size: 12px;
  }
}

body,
input,
select,
button,
textarea {
  font-size: 1rem;
  color: #595757;
  font-family: "Microsoft Yahei", "微软雅黑", arial;
}

/*--去标签全局样式-*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  font-style: normal;
}

img {
  max-width: 100%;
}

/*--去掉点全局样式-*/
ul,
li,
dd,
dl,
dt {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

/*--a全局样式-*/
a:link,
a:visited,
a:active,
a {
  text-decoration: none;
}
a * {
  cursor: pointer;
}
:focus {
  outline: none;
}

/*--全局框样式--*/
.container {
  width: 100% !important;
  min-width: inherit;
  max-width: inherit;
  padding: 0;
}
.content_detail,
.righter {
  min-height: 18.75rem;
}
/*--暂无数据样式-*/
.nodata {
  text-align: center;
  padding: 2rem 0;
}
.nodata::before {
  height: 100%;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.w-100 {
  width: 100%;
}

/*--手机导航点击主板块移动--*/
.main_box {
  transition: all 0.64s ease-in-out;
}
.main_box.left {
  transform: translateX(-31.25rem);
  transition: all 0.64s ease 0s;
}

/*显示及隐藏*/
.hide {
  display: none;
}
.hidden {
  display: none !important;
}
.block {
  display: block;
}
.active {
  display: block;
}
.show {
  top: 0 !important;
  transition: 0.5s ease-in-out !important;
  opacity: 1 !important;
}
.overflow {
  overflow: hidden;
}

/*半透遮罩层*/
.backdrop {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 8888;
  filter: alpha(Opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  background-color: #000;
  display: none;
}
​
/*文字超出省略*/
.ellipsis , .ellipsis1 {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ellipsis_2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis_3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ellipsis_4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsis_5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.ellipsis_6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsis_7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsis_8 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

/*全局浮动*/
.fl {
  float: left;
}
.fr {
  float: right;
}

/*--水平居中--*/
.m-center {
  margin: 0 auto;
}
/*--内容居中--*/
.t-center {
  text-align: center;
}
.t-center::before {
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*--外边距--*/
.m-90 {
  margin-top: 5rem;
}
.m-30 {
  margin-top: 1.875rem;
}
.mb-30 {
  margin-bottom: 1.875rem;
}

/*======================================
全局绝对定位居中
========================================*/
.box_center {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
/*======================================
全局display:flex排列布局
========================================*/
.dflex {
  display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box; /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox; /* 混合版本语法: IE 10 */
  display: -webkit-flex; /* 新版本语法: Chrome 21+ */
  display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*从左至右*/
.dflex-lr {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

/*从右至左*/
.dflex-rl {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*从上至下*/
.dflex-tb {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/*从下至上*/
.dflex-bt {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/*主轴居中*/
.dflex-pack-center {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*主轴居左*/
.dflex-pack-start {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

/*主轴居右*/
.dflex-pack-end {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*主轴左右不留白*/
.dflex-pack-between {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*主轴左右留白*/
.dflex-pack-around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*交叉轴居中对齐*/
.dflex-align-center {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

/*交叉轴居左对齐*/
.dflex-align-start {
  -webkit-box-align: start;
  -moz-align-items: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*交叉轴居右对齐*/
.dflex-align-end {
  -webkit-box-align: end;
  -moz-align-items: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/**指定子元素居中对齐**/
.self-align-center {
  align-self: center;
  -webkit-align-self: center;
  margin: 0 auto;
}

/**指定子元素顶部对齐**/
.self-align-start {
  align-self: flex-start;
  -webkit-align-self: flex-start;
}

/**指定子元素底部对齐**/
.self-align-end {
  align-self: flex-end;
  -webkit-align-self: flex-end;
}

/**指定子元素拉伸**/
.self-align-stretch {
  align-self: stretch;
  -webkit-align-self: stretch;
}

/*--换行--*/
.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*--不换行--*/
.nwrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*允许子元素伸展（1倍）*/
.flex {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1; /*如果值是2 那么当前元素就是其他元素宽的2倍了*/
}

/*允许子元素收缩(1倍)*/
.shrink {
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

/**水平居中*/
.dflex-center-center {
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -moz-box;
  -moz-box-align: center;
  -moz-box-pack: center;
  text-align: center;
}
/*=======================================
按钮经过样式
========================================*/
.more {
  display: block;
  width: 8.5625rem;
  height: 2.625rem;
  line-height: 2.5rem;
  text-align: center;
  border: 1px solid #4e6ef2;
  color: #4e6ef2;
  border-radius: 1.25rem;
  -webkit-border-radius: 1.25rem;
  -ms-border-radius: 1.25rem;
  -o-border-radius: 1.25rem;
  -moz-border-radius: 1.25rem;
  transition: 0.5s ease-in-out;
}
.more:hover {
  transition: 0.5s ease-in-out;
  border: 1px solid #4e6ef2;
  background-color: #4e6ef2;
  color: #ffffff;
}

/*=======================================
圆框全局样式
========================================*/
/*--10px圆框--*/
.border-10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -moz-border-radius: 10px;
}

/*=====================================================================================================全局结束=====================================================================*/

/*=======================================
header头部
========================================*/
.header_box,
.header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 5rem;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.header_fixed {
  position: fixed;
}
.header_box .header .container{
	max-width: 1520px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
}
/*logo样式*/
.header .logo {
  float: left;
  height: 3.5rem;
  margin-top: 0.75rem;
}
.header .logo img {
  width: auto;
  height: 100%;
}
/*搜索样式*/
.header_search,
.header_search span {
  line-height: 5rem;
  display: block;
  color: #333;
  cursor: pointer;
  font-size: 18px;
}
.header_search .search {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  height: 5rem;
  width: 100%;
}
.header_search .search ol {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  background: #ffffff;
  z-index: 1;
}
.header_search .search ul {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  height: 60px;
  width: 90%;
  max-width: 50rem;
  z-index: 2;
}
.header_search .search ul form {
  position: relative;
  height: 60px;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #1e1e1e;
}
.header_search .search ul input {
  outline: none;
}
.header_search .search ul input[type="text"] {
  border: none;
  width:100%;
  display: block;
  border: none;
  height: 60px;
  text-align: left;
  color: #666;
  font-size: 14px;
  background: none;
  line-height: 60px;
  padding: 0 85px 0 0.2rem;
  background: #fff;
}
.header_search .search ul input[type="text"]:focus {
  text-align: left;
}
.header_search .search_btn {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  z-index: 2;
  width: 85px;
  height: 60px;
  line-height: 60px;
  cursor: pointer;
  border: none;
  outline: none;
  color: #1e1e1e;
  background: #ffffff;
  font-size: 24px;
}
.header_search i {
  position: relative;
  width: 2.001rem;
  height: 2.25rem;
  line-height: 5rem;
  cursor: pointer;
  font-size: 28px;
  color: #1e1e1e;
  z-index: 5;
  margin-right: 10%;
  margin-top: 0;
}
/*语言样式*/
.header .lang_box {
  line-height: 5rem;
  display: block;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  margin: 0 1.25rem;
  position: relative;
}
.header .lang_box i {
  line-height: 5rem;
  display: block;
  color: #1e1e1e;
  cursor: pointer;
  font-size: 24px;
}
.header .lang_box .lang {
  position: absolute;
  z-index: 999;
  top: 5rem;
  left: -3.7rem;
  display: none;
  height: 90px;
  width: 8rem;
  text-align: center;
  background-color: #f6f6f6;
  overflow: hidden;
}
.header .lang_box a,
.header .lang_box .lang i {
  float: left;
  padding: 0px 10px;
  width: 100%;
  height: 45px;
  line-height: 45px;
}
.header .lang_box a {
	color: #222;
	border-bottom: 1px solid #ffffff;
}
.header .lang_box a:hover {
  color: #e43124;
}

/*pc导航样式*/
.header .nav {
  line-height: 5rem;
  display: block;
  color: #333;
  font-size: 14px;
  margin-right: 0.3rem;
}
.header .nav li {
  position: relative;
  float: left;
  line-height: 3.5rem;
  padding: 0.75rem 1.5rem;
}
.header .nav li a{
  font-size: 14px;
  color: #222;
}
.header .nav .active .navlia,
.header .nav li:hover .navlia {
  color: #4e6ef2;
}
.header .nav li .navsub {
	display: none;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 4.6875rem;
	width: 10.625rem;
	line-height: 3.125rem;
	text-align: center;
	background: #f6f6f6;
	border-top: 0.3125rem solid #4e6ef2;
}
.nav .navsub li {
  width: 100%;
  font-size: 14px;
  padding: 0;
  border-bottom: 1px solid white;
}
.nav .navsub li a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 0.5s ease-in-out;
  padding: 0 10px;
  line-height: 45px;
}
.nav .navsub li a:hover {
  color: #e43124;
  transition: all 0.5s ease-in-out;
}
/*手机导航样式*/
.header .m_nav {
  display: block;
  position: fixed;
  z-index: 90;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  background: #fff;
  box-sizing: border-box;
  padding: 0 0;
  transform: translateX(-100%);
  transition: 0.6s ease-in-out;
}
.header .navon {
  transform: translateX(0);
  transition: 0.6s ease-in-out;
}
.header .m_nav ul {
  overflow-y: auto;
  height: 100%;
  padding-bottom: 120px;
}
.header .m_nav .mnavli {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #eeeeee;
}
.header .m_nav .mnavli .mnavlia {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  font-weight: bold;
  padding: 0 0.8rem;
  font-size: 14px;
  color: #2e2e2e;
  line-height: 3;
  font-weight: normal;
}
.header .m_nav .mnavli i {
  position: absolute;
  right: 1rem;
  padding-left: 0.05rem;
  width: 1rem;
  height: 42px;
  top: 0;
  text-align: center;
  color: #888888;
  font-size: 12px;
  line-height: 42px;
}
.header .m_nav .on .mnavlia {
  color: white;
  background-color: #4e6ef2;
}
.header .m_nav .on .son {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  color: white;
}
.header .m_nav .mnavli .m_navsub {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  padding: 5px 10px;
  display: none;
  background: #f5f5f5;
}
.header .m_nav .mnavli .m_navsub li {
  width: 100%;
  height: auto;
  overflow: hidden;
  font-size: 12px;
  color: #666;
  line-height: 3;
  border-bottom: 1px solid #eeeeee;
}
.header .m_nav .mnavli .m_navsub li:last-child {
  border: none;
}
.header .m_nav .mnavli .m_navsub li a {
  color: inherit;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .header_box,
  .header {
    height: 60px;
  }
  .header .logo {
    height: 35px;
    margin-top: 13px;
  }
  .header .nav li {
    line-height: 40px;
    padding: 10px 0.25rem;
  }
  .header .lang_box,
  .header .lang_box i,
  .header_search,
  .header_search span,
  .header_search i,
  .header .nav {
    line-height: 60px;
  }
  .header .lang_box .lang {
    top: 60px;
  }
  .header_search .search {
    height: 60px;
  }
}

@media (max-width: 992px) {
  .header_box,
  .header {
    height: 50px;
  }
  .header {
    border-bottom: 1px solid #dcdcdc;
  }
  .header .logo {
    height: 30px;
    margin-top: 10px;
  }
  .header .lang_box i {
    padding: 0 10px;
  }
  .header .lang_box,
  .header .lang_box i,
  .header_search,
  .header_search span {
    line-height: 50px;
  }
  .header .lang_box .lang {
    top: 50px;
  }
  .header .lang_box {
    font-size: 12px;
    margin: 0 0.1rem;
  }
  /*--导航按钮--*/
  .mnav_btn {
    color: white;
    cursor: pointer;
    width: 50px;
  }
  .mnav_btn a {
    display: block;
    overflow: hidden;
  }
  .mnav_btn span {
    float: left;
    width: 25px;
    height: 2px;
    background-color: #555555;
    margin-top: 6px;
    -ms-transform-origin: 7% 50%;
    -moz-transform-origin: 7% 50%;
    -webkit-transform-origin: 7% 50%;
    -o-transform-origin: 7% 50%;
    transition: all 0.3s;
    margin-left: 25px;
  }
  .mnav_btn .line1 {
    margin-top: 16px;
  }
  .header .mnav_btn .on .line1 {
    transform: rotate(45deg);
  }
  .header .mnav_btn .on .line2 {
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    transform: rotate(0);
  }
  .header .mnav_btn .on .line3 {
    transform: rotate(-45deg);
  }
  /*--导航按钮结束--*/
  .header_search .search {
    height:100%;
  }
  .header_search .search ol{
    padding: 0;
  }
  .header_search .search ul{
    margin:0.5rem auto 0;
    position: relative;
    overflow: hidden;
    width:100%;
    max-width: initial;
  }
  .header_search .search ul form{
    margin: 0 auto;
    width:90%;
  }
  .header_search .search .visible-sm{
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 30px 0;
    width:90%;
    margin: 0 auto;
  }
  .header_search .search .visible-sm .key_box{
    position: relative;
    overflow: hidden;
    height: auto;
    margin: 0 0 0 -5px;
  }
  .header_search .search .visible-sm .key_box li{
    display: inline;
  }
  .header_search .search .visible-sm .key_box li a{
    background-color: #f5f5f5;
    color: #666666;
    font-size: 12px;
    padding: 6px;
    margin:5px;
  }
  .header_search .search .visible-sm h2{
    font-size:16px;
  }
  .header_search .search ul,
  .header_search .search ul form,
  .header_search .search ul input[type="text"],
  .header_search .search_btn {
    height: 48px;
    line-height: 48px;
  }
  .header_search .search ul input[type="text"] {
    padding-right: 55px;
  }
  .header_search .search_btn {
    width: 50px;
    font-size: 20px;
  }
  .header_search i {
    margin-right: 20px;
    width: 26px;
    height: 55px;
    font-size: 24px;
    line-height: 55px;
  }
}

/*==============================================================================================*/
/*手机底导航
/*==============================================================================================*/
@media (min-width: 992px) {
  .footer-nav {
    display: none;
  }
}
@media (max-width: 992px) {
  .footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8888;
    background-color: #e43124;
    height:50px;
    display: block;
  }
  .footer-nav ul {
    position: relative;
    display: block;
  }
  .footer-nav ul li {
    float: left;
    width: 20%;
    height:50px;
    text-align: center;
    overflow: hidden;
  }

  .footer-nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .footer-nav ul li span {
    position: relative;
    display: block;
    text-align: center;
    width: 20px;
    height: 20px;
    margin:6px auto;
    overflow: hidden;
  }
/*  .footer-nav ul li:nth-child(3) span {
    position: absolute;
    top: -1.35em;
    width: 6.3em;
    height: 6.3em;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
  }
 */
  .footer-nav ul li:nth-child(3) p {
    display: none;
  }
  .footer-nav ul li span img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    height: 100%;
  }
  .footer-nav ul li p {
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 11px;
  }
  .footer-nav ul li:nth-child(3) span img {
    position: relative;
    width: 100%;
    height: auto;
  }
}

/*==============================================================banner海报=============================================================================*/
.banner_box {
  position: relative;
}
.banner_box,
.banner_box .banner_container,
.banner_box a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.banner_box img {
  width: 100%;
}
.banner_box .banner_prev,
.banner_box .banner_next {
  position: absolute;
  width: 50px;
  height: 93.5px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 2;
}
.banner_box .banner_prev {
  right: 0;
  background: url(../images/b-right.png) no-repeat center;
  background-size: cover;
}
.banner_box .banner_next {
  left: 0;
  background: url(../images/b-left.png) no-repeat center;
  background-size: cover;
}
.banner_box .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  position: relative;
  background: #4e6ef2;
  opacity: 1;
  margin: 0 10px !important;
}
.banner_box .swiper-pagination-bullet-active::before {
  left: -5px;
  top: -5px;
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: #4e6ef2 1px solid;
}
@media (max-width: 768px) {
  .banner_box .banner_prev,
  .banner_box .banner_next {
    position: absolute;
    width: 35px;
    height: 65px;
  }
}

/*==============================================================面包屑样式=============================================================================*/
.banner-container {
  position: relative;
}

/*==============================================================底部样式=============================================================================*/
.footer_box {
  position: relative;
  background-color: #1e1e1e;
  overflow: hidden;
}
.footer_box .container{
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  overflow: hidden;
}
.footer_top{
  padding: 60px 0;
  overflow: hidden;
}
.footer_box a ,.footer_box{
  color: white;
}
.footer_box a:hover {
  color: #4e6ef2;
}
/*---底部栏目--*/
.footer_top_left{
  float: left;
  overflow: hidden;
}
.footer_top_left ul{
  overflow: hidden;
}
.footer_top_left li{
  float: left;
  width:16.66%;
  padding-right:3%;
}
.footer_top_left li .lia{
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
.footer_top_left li ol{
  width: 100%;
}
.footer_top_left li ol a{
  float: left;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 35px;
  height: 35px;
  color: #aeaeae;
}
.footer_top_right .footer_top_txt{
  padding-right: 20px;
}
.footer_top_right .footer_top_txt p ,.footer_top_right .footer_top_txt a{
  font-size: 14px;
  color: #aeaeae;
  line-height:1.6;
  margin-bottom: 10px;
}
.footer_top_right ._tel{
  float: left;
  overflow: hidden;
  width: 100%; 
  margin-top: 15px;
}
.footer_top_right ._tel img{
  float: left;
  height:37px;
  margin-right: 10px;
  margin-top:12px;
}
.footer_top_right ._tel h2 span{
  display: block;
  font-size:14px;
  color: #aeaeae;
}
.footer_top_right ._tel h2 p{
  display: block;
  color:#4e6ef2;
  font-size:30px;
  font-weight: bold;
  line-height:1.7;
  margin: 0;
}
.footer_top_right{
  float: right;
  overflow: hidden;
  font-size: 14px;
}
.footer_top_right ul li{
  float:left;
  margin-left:3%;
  width: 47%;
}
.footer_top_right ul li img{
  width: 100%;
  background-color: #ffffff;
}
.footer_top_right ul li p{
  text-align: center;
  line-height:40px;
}
/*---底部信息--*/
.footer_bottom{
  border-top: 1px solid #474747;
  font-size: 14px;
  padding: 1.5rem 0;
  overflow: hidden;
}
/*---底部技术支持--*/
.footer_bottom .footer_icp{
  float: right;
  text-align: right;
}
.footer_bottom .footer_icp li{
  display: inline;
}
/*---底部友情链接--*/
.footer_links {
  float: left;
  overflow: hidden;
}
.footer_links li {
  float: left;
  margin-right: 0.625rem;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .footer_box .container{
    padding:0 15px 60px;
  }
  .footer_top{
    padding:40px 0 20px;
  }
  .footer_top_right .footer_top_txt{
	  padding-right:0;
  }
  .footer_top_right ._tel{
    margin-top: 0px;
	display: none;
  }
  .footer_top_right .footer_top_txt p, .footer_top_right .footer_top_txt a{
    font-size: 14px;
	text-align: center;
  }
  .footer_top_right ._tel h2 p{
    font-size: 24px;
  }
  .footer_top_right ul{
    margin-top: 20px;
  }
  .footer_top_right ._tel img{
    margin-top: 9px;
  }
  .footer_top_right ul li{
    margin: 0 4% 0 0;
	width: 48%;
	padding: 10px;
  }
   .footer_top_right ul li:nth-child(2n){
	   margin: 0 0 0 0 ;
   }
}

/*==============================================================================================*/
/*手机底导航
/*==============================================================================================*/
@media (max-width: 992px) {
  .footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8888;
    background-color: #4e6ef2;
    height: 45px;
    display: block;
  }
  .footer-nav ul {
    position: relative;
    display: block;
  }
  .footer-nav ul li {
    float: left;
    width: 20%;
    height: 45px;
    text-align: center;
    overflow: hidden;
  }

  .footer-nav ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .footer-nav ul li span {
    position: relative;
    display: block;
    text-align: center;
    width: 20px;
    height: 20px;
    margin: 5px auto;
    overflow: hidden;
  }
  .footer-nav ul li:nth-child(3) span {
    position: absolute;
    top: -1rem;
    width: 6rem;
    height: 6rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    overflow: hidden;
  }

  .footer-nav ul li:nth-child(3) p {
    display: none;
  }
  .footer-nav ul li span img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 100%;
    height: 100%;
  }
  .footer-nav ul li p {
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 11px;
  }
  .footer-nav ul li:nth-child(3) span img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
/*=====================================================================================================脚部结束=====================================================================*/

._left5 {
  left: 5% !important;
}
._top25 {
  top: 25%;
}
/*--标题--*/
.guide_txt {
  left: 5%;
  top: 5rem;
}
.list {
  padding: 2.5rem 0;
}

/*---内页海报样式--*/
.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 10rem;
}
.banner-container .container {
  position: absolute;
  bottom: 0;
  line-height: 5rem;
  height: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: url(../images/cumb.png) center no-repeat;
  background-size: cover;
  width: 100%;
  bottom: 0;
  left: 0;
}
.banner-container .crumb {
  width:100%;
  max-width:1520px;
  margin: auto;
  text-align: center;
  overflow: hidden;
  padding: 0 15px;
}
.banner-container .crumb-container {
  width: 100%;
}
.banner-container .crumb li {
  display: inline;
  font-size: 1.0625rem;
  color: #fafafa;
  text-align: center;
  transition: 0.5s ease-in-out;
}
.banner-container .crumb li a {
  display: block;
  color: #ffffff;
}
.banner-container .crumb .active a,
.banner-container .crumb li a:hover {
  background: #4e6ef2;
  transition: 0.5s ease-in-out;
}

/*==============================================================内页关于我们样式=============================================================================*/

/*--共用--*/
._bd {
  position: relative;
  overflow: hidden;
}
.content_box {
  position: relative;
  width:100%;
  margin: 0 auto;
  max-width:1520px;
  z-index: 3;
  overflow: hidden;
  padding: 0 15px;
}
@media (max-width:992px) {
	.content_box {padding: 0 10px;}
}
.main_m {
  padding: 6.25rem 0;
}

/*--共用左右轮播--*/
.ck_prev,
.ck_next {
  width: 3rem;
  height: 3rem;
  background: url(../images/banner_arrow.png) no-repeat;
  background-size: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  margin-top: 2rem;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck_prev::after,
.ck_next::after {
  content: none;
}
.ck_next {
  right: 0;
  background-position: right top;
  background-size: 200%;
}
.ck_prev {
  left: 0;
  background-position: left top;
  background-size: 200%;
}
.ck_prev:hover {
  background-position: left bottom;
}
.ck_next:hover {
  background-position: right bottom;
}

/*--关于我们--*/
.about_left .main_m ul {
  width: 100%;
  margin-top: 3rem;
}
.about_left .main_m ul li {
  float: left;
  text-align: center;
  margin-right: 5%;
  margin-bottom: 1.5rem;
}
.about_left .main_m ul li p {
  line-height: 1;
}
.about_left .main_m ul li h2 {
  color: #4e6ef2;
  font-size: 1.6rem;
  font-weight: bold;
}
.about_right {
  position: absolute;
  right: 0;
  bottom: -8%;
  z-index: 1;
  padding: 0;
}

/*--企业文化--*/
.culture_mian .left_box {
  padding-right: 5%;
  margin-bottom: 5%;
}
/*--发展历程时间--*/
.course_mian .content_box {
  padding: 0 4rem;
}
.course-time {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.course-time::before {
  width: 120%;
  height: 1px;
  background-color: #000;
  content: "";
  position: absolute;
  bottom: 0.25rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: -1;
}
.course-time li {
  max-width: 5rem !important;
  cursor: pointer;
}
.course-time li span {
  display: block;
  margin: 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  background-color: #999;
  transition: 0.5s ease-in-out;
}
.course-time li p {
  font-size: 1rem;
  color: #999;
  text-align: center;
  height: 2rem;
  line-height: 2rem;
  transition: 0.5s ease-in-out;
}
.course-time .swiper-slide-thumb-active p {
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.5s ease-in-out;
}
.course-time .swiper-slide-thumb-active span {
  background-color: black;
  transition: 0.5s ease-in-out;
}

.course_mian .ck_prev,
.course_mian .ck_next {
  margin-top: 3.2rem;
}

/*--发展历程内容--*/
.course-txt {
  margin-top: 1.875rem;
  overflow: hidden;
}
.course-txt li .pic {
  position: relative;
  padding-top: 18.9%;
  min-height: 15rem;
  overflow: hidden;
  margin-right: 1.2rem;
  margin-bottom: 1.25rem;
}
.course-txt li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-txt li .txt {
  overflow: hidden;
  line-height: 2.3;
}
.course-txt li .txt p {
  width: 100%;
}
@media (max-width: 768px) {
  .course-txt li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
/*--公司环境--*/
.surroundings_mian {
  background-color: #f5f5f5;
}
.surroundings_mian .content_box {
  padding: 0 4rem;
}
.surroundings_mian li .pic {
  height: 15rem;
  overflow: hidden;
  position: relative;
}
.surroundings_mian li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.surroundings_mian li p {
  text-align: center;
  color: #000;
  background: #fff;
  padding: 0 1rem;
  line-height: 3rem;
  height: 3rem;
}

/*==============================================================关于我们结束=============================================================================*/

/*==============================================================文章与图文模型列表样式=============================================================================*/
.list {
  overflow: hidden;
  min-height: 12.5rem;
  padding: 6.25rem 0 3rem;
}

.list ul {
  border-left: 1px solid #dddddd;
  overflow: hidden;
}
.list ul li {
  border-right: 1px solid #dddddd;
}
.list ul li a {
  display: block;
  padding: 1.5625rem;
  padding-top: 2.1875rem;
  color: #888888;
  font-size: 12px;
  transition: 0.5s ease-in-out;
}
.list ul li .time {
  font-size: 12px;
}
.list ul li h3 {
  line-height: 1.8rem;
  height: 3.6rem;
  font-size: 1.8rem;
  color: #222222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
  transition: 0.5s ease-in-out;
  margin-bottom: 0.6rem;
  font-weight: 350;
}

.list ul li .pic {
  position: relative;
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
.list ul li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list ul li .cate {
  margin-bottom: 1.25rem;
  font-size: 14px;
}
.list ul li p {
  line-height: 25px;
  height: 50px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 0.9375rem;
  margin-bottom: 1.25rem;
}
.list ul li .more0 {
  width: 75px;
  height: 13px;
  background: url(../images/more-a.png) no-repeat center;
  background-size: 100%;
  transition: 0.5s ease-in-out;
}
.list a:hover,
.list a:hover h3 {
  transition: 0.5s ease-in-out;
  color: #fff;
}
.list a:hover {
  background-color: #4e6ef2;
}
.list a:hover .more0 {
  background: url(../images/more-s.png) no-repeat center;
  background-size: 100%;
  transition: 0.5s ease-in-out;
  margin-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .list ul li h3 {
    height: auto;
    max-height: 50px;
    line-height: 25px;
  }
}

/*==============================================================文章与图文模型详情样式=============================================================================*/
.multi_detail {
  background: #f5f5f5;
  overflow: hidden;
}
.multi_detail .content_box {
  margin: 7rem auto 3rem;
  max-width: 1200px;
}
/*--内容--*/
.multi_detail .content_box > .main {
  padding: 3rem 6rem;
  font-size: 14px;
  background-color: white;
}
.multi_detail .content_box > .main ._tl {
  padding-bottom: 2.1875rem;
  border-bottom: 1px solid #bfbfbf;
  line-height: 1;
}
.multi_detail .content_box > .main ._tl li {
  font-size: 1rem;
  color: #4c4c4c;
  margin-bottom: 3.125rem;
  overflow: hidden;
}
.multi_detail .content_box > .main ._tl h2 {
  color: #222222;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.multi_detail .content_box > .main ._bd {
  font-size: 0.875rem;
  padding-top: 2.8125rem;
  color: #222222;
  line-height: 1.875rem;
}

/*--附属类--*/
.multi_detail .content_box > .main .attached {
  overflow: hidden;
  text-align: left;
  margin-top: 2.8125rem;
}
.multi_detail .content_box > .main .attached li {
  display: inline-block;
  margin: 5px 10px 5px 0;
}
.multi_detail .content_box > .main .attached li a {
  display: block;
  color: #666;
  text-align: center;
  margin-right: 10px;
  width: 10rem;
  height: 2.1875rem;
  border-radius: 2.1875rem;
  line-height: 2.05rem;
  padding: 0 0.9375rem;
  border: 1px solid #666;
  transition: 0.5s ease-in-out;
}
.multi_detail .content_box > .main .attached li a:hover {
  background: #4e6ef2;
  color: #ffffff;
  border-color: #4e6ef2;
  transition: 0.5s ease-in-out;
}

/*--返回--*/
.multi_detail .content_box > ._return {
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #d2d2d2;
  box-sizing: border-box;
  overflow: hidden;
}
.multi_detail .content_box > ._return .fl {
  margin-top: 0.3125rem;
  height: 2.375rem;
  width: 10.625rem;
  background: #222222;
  font-size: 0.875rem;
  line-height: 2.375rem;
  position: relative;
}
.multi_detail .content_box > ._return .fl a {
  display: block;
  position: relative;
  z-index: 2;
  padding-left: 4.375rem;
  color: #ffffff;
}
.multi_detail .content_box > ._return .fl a::before {
  position: absolute;
  content: "";
  left: 2.5rem;
  width: 1.0625rem;
  height: 1px;
  background: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
}
.multi_detail .content_box > ._return .fl::before {
  position: absolute;
  width: 18px;
  height: 100%;
  background: #05a3a6;
  transition: 0.6s ease-in-out;
  content: "";
  left: 0;
  top: 0;
}

/*--上下切换--*/
.multi_detail .content_box > ._return .fr a {
  float: left;
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(../images/banner_arrow.png) no-repeat;
  background-size: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 0.5rem;
}
.multi_detail .content_box > ._return .fr .next {
  background-position: right top;
  background-size: 200%;
}
.multi_detail .content_box > ._return .fr .prev {
  background-position: left top;
  background-size: 200%;
}
.multi_detail .content_box > ._return .fr .next:hover {
  background-position: right bottom;
  background-size: 200%;
}
.multi_detail .content_box > ._return .fr .prev:hover {
  background-position: left bottom;
  background-size: 200%;
}

/*--相关推荐--*/
.content_detail ._recommend {
  margin-top: 2rem;
  overflow: hidden;
}
.content_detail ._recommend h1 {
  position: relative;
  font-size: 24px;
  color: #222222;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.content_detail ._recommend h1::before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 0.1875rem;
  overflow: hidden;
  background: #4e6ef2;
  margin: 0 auto;
}
.content_detail ._recommend li {
  width: 49%;
  background-color: #fff;
  margin-bottom: 1rem;
}
.content_detail ._recommend li .pic {
  width: 100%;
  padding-top: 52%;
  position: relative;
  overflow: hidden;
}
.content_detail ._recommend li .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content_detail ._recommend li .txt {
  padding: 1.25rem 1.25rem 1.875rem;
}
.content_detail ._recommend li .txt h2 {
  line-height: 20px;
  height: 20px;
  font-size: 18px;
  color: #222222;
  margin: 0 0 10px 0;
}
.content_detail ._recommend li .txt p {
  line-height: 24px;
  height: 48px;
  font-size: 14px;
  color: #888888;
}
.content_detail ._recommend li .txt a {
  background-color: #4e6ef2;
  color: white;
  margin-top: 0.9375rem;
}
.article_detail .content_box ._recommend li {
  padding: 1.875rem 1.25rem 1.25rem;
}
.article_detail .content_box ._recommend li .txt h2 {
  font-weight: bold;
}

.product_box ._recommend li {
  width: 24%;
}
.product_box ._recommend li .pic {
  padding-top: 100%;
}
.product_box ._recommend li .pic img {
  width: 70%;
  height: auto;
  object-fit: inherit;
}
/*--不同屏幕--*/
@media screen and (max-width: 1024px) {
  .multi_detail .content_box {
    margin: 5.2rem auto 2.5%;
  }
  .multi_detail .content_box > .main {
    padding: 4rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .multi_detail .content_box > .main ._tl .fr {
    float: left;
  }
  .multi_detail .content_box > .main ._tl li,
  .multi_detail .content_box > .main ._tl {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .multi_detail .content_box > .main ._tl {
    padding-bottom: 1.5rem;
  }
  .multi_detail .content_box > .main ._bd {
    padding-top: 1rem;
  }
  .content_detail ._recommend li {
    width: 100%;
  }
}

/*==============================================================产品模型详情样式=============================================================================*/
.prolist .pli {
  width: 100%;
  height: 42.5rem;
  overflow: hidden;
  padding: 3rem 0;
}
.prolist .pli:nth-child(2n) ol {
  flex-direction: row-reverse;
}
.prolist ol,
.prolist .content_box {
  height: 100%;
}
/*--图片--*/
.prolist .pull-left a {
  max-width: 31.25rem;
  display: block;
  position: relative;
  display: block;
}
/*--文字--*/
.prolist .pull-right h1 {
  width: 100%;
  height: auto;
  overflow: hidden;
  font-size: 2.5rem;
  color: #4e6ef2;
  font-weight: bold;
}
.prolist .pull-right ul {
  max-height: 18rem;
  overflow: hidden;
}
.prolist .pull-right i {
  display: inline-block;
  width: 3.75rem;
  height: 0.1875rem;
  overflow: hidden;
  background: #666;
  margin: 0.875rem 0 1.75rem;
}
.prolist .pull-right li {
  width: 100%;
  height: auto;
  overflow: hidden;
  font-size: 1.25rem;
  line-height: 3rem;
  color: #222222;
}
.prolist .pull-right li strong {
  color: #222;
}
.prolist .pull-right .more {
  margin: 1.5rem 0 0;
  background-color: #4e6ef2;
  color: white;
  transition: all ease-out 0.3s;
}
.prolist .pull-right .more:hover {
  background-color: #6380f5;
}

/*--不同屏幕--*/
@media screen and (max-width: 998px) {
  .prolist .pli {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .prolist .pull-left {
    margin-bottom: 1rem;
  }
  .prolist .pull-left a {
    margin: 0 auto;
    text-align: center;
  }
}

/*==============================================================产品详情样式=============================================================================*/
.product_box {
  overflow: hidden;
}
.product_box ._thumb {
  width: 100%;
  margin: 3% 0;
  overflow: hidden;
}

/*--图片样式--*/
.product_box ._thumb .left_box .proswiper,
.product_box ._thumb .left_box ._right {
  display: inline-block;
  vertical-align: middle;
}
.product_box ._thumb .left_box ._right {
  width: calc(100% - 10rem);
}
.product_box ._thumb .left_box {
  position: relative;
}
.product_box ._thumb .left_box .proswiper {
  height: 19.7rem;
  overflow: hidden;
  width: 6rem;
  margin-top: 5rem;
  margin-right: 3rem;
  margin-bottom: 5rem;
}
.product_box ._thumb .left_box .proswiper li {
  border: 2px solid #ddd;
  cursor: pointer;
  padding: 5px;
  overflow: hidden;
  width: 6rem !important;
  height: 6rem !important;
}
.product_box ._thumb .left_box .proswiper .swiper-slide-thumb-active {
  border: 2px solid #4e6ef2;
}
.product_box ._thumb .left_box .proswiper li img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 90%;
}
.product_box ._thumb .left_box .proswiper1,
.product_box ._thumb .left_box .proswiper1 li {
  overflow: hidden;
}
.product_box ._thumb .left_box .proswiper1 li img {
  margin: 0 auto;
  width: 85%;
  padding: 0 7.5%;
}
.product_box ._thumb .left_box .swiper-button-next,
.product_box ._thumb .left_box .swiper-button-prev {
  left: 2rem;
  right: inherit;
  margin: 0;
}
.product_box ._thumb .left_box .swiper-button-prev {
  top: 1rem;
  bottom: inherit;
}
.product_box ._thumb .left_box .swiper-button-next {
  bottom: 1rem;
  top: inherit;
}
.product_box ._thumb .left_box .swiper-button-next::after,
.product_box ._thumb .left_box .swiper-button-prev::after {
  color: #888888;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

/*--文字样式--*/
.product_box ._thumb .right_box {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 1.875rem 3%;
  color: #222222;
  line-height: 2;
  min-height: 30rem;
}
.product_box ._thumb .right_box ._title {
  font-size: 2.25rem;
  color: #222222;
  font-weight: bold;
  line-height: 2.5rem;
}
.product_box ._thumb .right_box p {
  font-size: 1rem;
  line-height: 2rem;
  color: #999;
  margin-bottom: 1rem;
}
.product_box ._thumb .right_box ul {
  padding: 1.25rem 0;
  color: #999;
  line-height: 2;
}
.product_box ._thumb .right_box ul em {
  font-weight: bold;
  color: #222222;
}
.product_box ._thumb .right_box .more:hover a {
  color: #fff;
}

/*--详细信息--*/
.product_box .pro_title {
  background: #2e2e2e;
  height: 6.25rem;
  width: 100%;
  line-height: 6.25rem;
  color: #fff;
  font-size: 1.875rem;
  font-weight: bold;
}
.product_box .pro_detail {
  clear: both;
  overflow: hidden;
  margin: 10px auto 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #666;
}
.product_box .pro_detail ._hd {
  color: #2e2e2e;
  height: 3.75rem;
  margin: 0.9375rem auto;
}
.product_box .pro_detail ._hd h1 {
  display: inline;
  line-height: 3.75rem;
  padding-bottom: 0.5rem;
  font-size: 1.875rem;
  font-weight: bold;
}
/*--上下条--*/
.next-map {
  margin: 1.5rem auto;
}
.next-map p {
  display: inline-block;
  width: 49.5%;
}
.next-map p:nth-child(2) {
  text-align: right;
}
.next-map a {
  display: block;
  color: #999;
  text-align: left;
}
.next-map span {
  float: left;
  font-weight: bold;
  color: #363636;
}

/*--不同屏幕--*/
@media screen and (max-width: 998px) {
  .product_box ._thumb .left_box .swiper-button-next,
  .product_box ._thumb .left_box .swiper-button-prev {
    left: 1.6rem;
  }
  .product_box ._thumb .left_box .swiper-button-next::after,
  .product_box ._thumb .left_box .swiper-button-prev::after {
    font-size: 2.5rem;
  }
  .product_box ._thumb .right_box {
    margin-top: 5%;
  }
}

/*==============================================================page翻页=============================================================================*/
.page .pagination {
  margin-bottom: 4rem;
}

/*--动画效果--*/
@keyframes Fpulse {
  0% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  }
}
.FpulseSlow2 {
  animation: FpulseSlow2 infinite 3s linear;
  opacity: 0;
}
@keyframes FpulseSlow {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0.5;
  }
}
@keyframes FpulseSlow2 {
  0% {
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
